Hashtable ht = new Hashtable();
ht = ConfigurationManager.GetSection("MyCompanyAppSettings") as Hashtable;

Response.Write(ht["Key1"] + "<br />");
Response.Write(ht["Key2"]);
